/*Font type and background color*/
body {
    font-family: serif;
    font-size: "14pt";
    background-color: blanchedalmond
}

/*Colors for the navigation bar hyperlinks*/
nav a:link{color:maroon}
nav a:hover{color:cornflowerblue}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0   
}

/*Specifications for section of home page*/
section {
    float: left;
    /*border: 5px;
    border-style: solid;
    border-color: navy;*/
    font-size: 10xp;
    text-align: center
}

/*Specifications for the aside*/
aside {
    float: right;
    background-color: darkkhaki;
    border-color: navy;
    border: 3px;
    border-style: solid;
    border-color: navy
}

/*Specifications for the footer*/
footer {
    width: 97%;
    display: block;
    clear: both;
    padding: 10px;
    background-color: khaki;
    border: 2px;
    border-style:solid;
    border-color: navy;
    margin-top: 1%; 
    top: 20px;
    bottom: 0;
    text-align: center;
    font-size: small;
}